All files / models vapid-details-model.ts

91.67% Statements 55/60
95% Branches 19/20
84.21% Functions 16/19
91.23% Lines 52/57
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145                                  10x 10x   10x 10x 10x 10x   10x                 10x 4x                 10x 11x 6x     5x 5x 5x 5x 5x 5x       5x 5x 5x 5x 2x   5x                 21x 21x 12x     9x 6x         3x         3x 3x 3x       3x 3x 3x     3x 3x                     10x 2x 2x 1x     1x 1x 1x       1x 1x 1x     1x 1x             1x           10x  
/**
 * Copyright 2017 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
'use strict';
 
import DBInterface from './db-interface';
import Errors from './errors';
 
const FCM_VAPID_OBJ_STORE = 'fcm_vapid_object_Store';
const DB_NAME = 'fcm_vapid_details_db';
const DB_VERSION = 1;
const UNCOMPRESSED_PUBLIC_KEY_SIZE = 65;
 
export default class VapidDetailsModel extends DBInterface {
  constructor() {
    super(DB_NAME, DB_VERSION);
  }
 
  /**
   * @override
   * @param {IDBDatabase} db
   */
  onDBUpgrade(db) {
    db.createObjectStore(FCM_VAPID_OBJ_STORE, {
      keyPath: 'swScope'
    });
  }
 
  /**
   * Given a service worker scope, this method will look up the vapid key
   * in indexedDB.
   */
  getVapidFromSWScope(swScope: string): Promise<Uint8Array> {
    if (typeof swScope !== 'string' || swScope.length === 0) {
      return Promise.reject(this.errorFactory_.create(Errors.codes.BAD_SCOPE));
    }
 
    return this.openDatabase().then(db => {
      return new Promise<Uint8Array>((resolve, reject) => {
        const transaction = db.transaction([FCM_VAPID_OBJ_STORE]);
        const objectStore = transaction.objectStore(FCM_VAPID_OBJ_STORE);
        const scopeRequest = objectStore.get(swScope);
        scopeRequest.onerror = () => {
          reject(scopeRequest.error);
        };
 
        scopeRequest.onsuccess = () => {
          let result = scopeRequest.result;
          let vapidKey = null;
          if (result) {
            vapidKey = result.vapidKey;
          }
          resolve(vapidKey);
        };
      });
    });
  }
 
  /**
   * Save a vapid key against a swScope for later date.
   */
  saveVapidDetails(swScope: string, vapidKey: Uint8Array): Promise<void> {
    if (typeof swScope !== 'string' || swScope.length === 0) {
      return Promise.reject(this.errorFactory_.create(Errors.codes.BAD_SCOPE));
    }
 
    if (vapidKey === null || vapidKey.length !== UNCOMPRESSED_PUBLIC_KEY_SIZE) {
      return Promise.reject(
        this.errorFactory_.create(Errors.codes.BAD_VAPID_KEY)
      );
    }
 
    const details = {
      swScope: swScope,
      vapidKey: vapidKey
    };
 
    return this.openDatabase().then(db => {
      return new Promise<void>((resolve, reject) => {
        const transaction = db.transaction(
          [FCM_VAPID_OBJ_STORE],
          this.TRANSACTION_READ_WRITE
        );
        const objectStore = transaction.objectStore(FCM_VAPID_OBJ_STORE);
        const request = objectStore.put(details);
        request.onerror = () => {
          reject(request.error);
        };
        request.onsuccess = () => {
          resolve();
        };
      });
    });
  }
 
  /**
   * This method deletes details of the current FCM VAPID key for a SW scope.
   * Resolves once the scope/vapid details have been deleted and returns the
   * deleted vapid key.
   */
  deleteVapidDetails(swScope: string): Promise<Uint8Array> {
    return this.getVapidFromSWScope(swScope).then(vapidKey => {
      if (!vapidKey) {
        throw this.errorFactory_.create(Errors.codes.DELETE_SCOPE_NOT_FOUND);
      }
 
      return this.openDatabase().then(db => {
        return new Promise<Uint8Array>((resolve, reject) => {
          const transaction = db.transaction(
            [FCM_VAPID_OBJ_STORE],
            this.TRANSACTION_READ_WRITE
          );
          const objectStore = transaction.objectStore(FCM_VAPID_OBJ_STORE);
          const request = objectStore.delete(swScope);
          request.onerror = () => {
            reject(request.error);
          };
          request.onsuccess = () => {
            Iif (request.result === 0) {
              reject(
                this.errorFactory_.create(Errors.codes.FAILED_DELETE_VAPID_KEY)
              );
              return;
            }
 
            resolve(vapidKey);
          };
        });
      });
    });
  }
}